home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / WimpSWIs / Static / Makefile < prev   
Makefile  |  1995-09-04  |  2KB  |  111 lines

  1.  
  2. ObjectFiles    =        \
  3.             o.DLLPoll    \
  4.             o.00Poll    \
  5.             o.01Init    \
  6.             o.02CreateW    \
  7.             o.03CreateI    \
  8.             o.04DeleteW    \
  9.             o.05DeleteI    \
  10.             o.06OpenW    \
  11.             o.07CloseW    \
  12.             o.08RedrawW    \
  13.             o.09UpdateW    \
  14.             o.10GetRect    \
  15.             o.11GetState    \
  16.             o.12GetInfo    \
  17.             o.12GetInfo3    \
  18.             o.13SetIStat    \
  19.             o.14GetIInfo    \
  20.             o.15PointInf    \
  21.             o.16DragBox    \
  22.             o.17ForceRed    \
  23.             o.18SetCaret    \
  24.             o.19GetCaret    \
  25.             o.20CreateM    \
  26.             o.21DecodeM    \
  27.             o.22WhichI    \
  28.             o.23SetExten    \
  29.             o.24PtrShape    \
  30.             o.25OpenT    \
  31.             o.26CloseT    \
  32.             o.27LoadT    \
  33.             o.28ProcKey    \
  34.             o.29CloseDn    \
  35.             o.31StrtTask    \
  36.             o.31StrtTsk3    \
  37.             o.32GetWOut    \
  38.             o.33PlotI    \
  39.             o.34SetMode    \
  40.             o.35ReadPal    \
  41.             o.36SetPal    \
  42.             o.37SetCol    \
  43.             o.38BOSprite    \
  44.             o.39BlockCpy    \
  45.             o.40RepError    \
  46.             o.40RepErrR    \
  47.             o.41SendMsg    \
  48.             o.43CreateSM    \
  49.             o.44SlotSize    \
  50.             o.45TransBlk    \
  51.             o.47SpriteOp    \
  52.             o.48FontCols    \
  53.             o.49PixTrans    \
  54.             o.50CmdWind    \
  55.  
  56.  
  57. LibName        =    WimpSWIs
  58.  
  59. # Template makefile which makes normal 
  60. # .o files for use in the main static
  61. # linking DeskLib.
  62.  
  63. # The macro $(ObjectFiles) should be set at the 
  64. # start of this file to be a space-separated
  65. # list of object files.
  66. # This is done by 'Makatic'.
  67.  
  68. # The macro $(LibName) should also be set at the 
  69. # start of this file, to be the name of the 
  70. # DeskLib sublibrary.
  71. # This is done by 'Makatic'.
  72.  
  73. # Compiler and linker flags, These can be anything. 
  74. # All essential flags are included in the macros 
  75. # $(CC) and $(ASM)
  76. #
  77. CCFlags        =    -ffahi $(CCExtra) -depend !Depend -throwback -D_DeskLib_$(LibName) -I,C:
  78. ASMFlags    =    -Stamp -NoCache -CloseExec -Quit $(ASMExtra)
  79.  
  80. CC        =    cc -c $(CCFlags)
  81. ASM        =    objasm $(ASMFlags)
  82.  
  83.  
  84. # -------------------------------------------------------
  85. # Everything below here should probably not be changed...
  86. # -------------------------------------------------------
  87.  
  88. # Here's what we want to make...
  89. #
  90. All:        $(ObjectFiles)
  91.  
  92.  
  93. VPATH = @.^
  94.  
  95. .SUFFIXES:    .c .s .o
  96.  
  97. .c.o:
  98.     $(CC) $< -o $@
  99.     
  100. .s.o:
  101.     $(ASM) -from $< -to $@
  102.  
  103.  
  104.  
  105. # Dynamic dependencies:
  106. o.DLLPoll:    ^.c.DLLPoll
  107. o.DLLPoll:    DeskLib:h.WimpSWIs
  108. o.DLLPoll:    DeskLib:h.Core
  109. o.DLLPoll:    DeskLib:h.Wimp
  110. o.DLLPoll:    ^.h.DLLPollDefs
  111.